-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobloxxx
More file actions
101 lines (91 loc) · 2.57 KB
/
robloxxx
File metadata and controls
101 lines (91 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Meus Scripts de Roblox</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background-color: #121212;
color: #ffffff;
margin: 0;
padding: 30px;
}
h1 {
color: #00e676;
}
select, textarea, button {
width: 100%;
font-size: 16px;
margin-top: 15px;
border-radius: 6px;
padding: 12px;
border: none;
box-sizing: border-box;
}
textarea {
background-color: #1e1e1e;
color: #e0e0e0;
height: 300px;
font-family: monospace;
resize: none;
}
button {
background-color: #00e676;
color: #000000;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #00c853;
}
footer {
margin-top: 40px;
text-align: center;
font-size: 14px;
color: #888;
}
</style>
</head>
<body>
<h1>🎮 Meus Scripts de Roblox</h1>
<p>Escolha um script e clique em <strong>"Copiar Script"</strong> para usá-lo em seu executor Roblox.</p>
<label for="scriptSelect"><strong>Selecionar Script:</strong></label>
<select id="scriptSelect" onchange="mudarScript()">
<option value="autofarm">Auto Farm</option>
<option value="fly">Modo Voo</option>
<option value="teleport">Teleporte Rápido</option>
</select>
<label for="scriptBox"><strong>Script:</strong></label>
<textarea id="scriptBox" readonly></textarea>
<button onclick="copiarScript()">📋 Copiar Script</button>
<footer>
<p>Feito por Você © 2025 | Use com responsabilidade 🎯</p>
</footer>
<script>
const scripts = {
autofarm: `-- Script Auto Farm Roblox
while true do
wait(1)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace.Mobs.Mob1.HumanoidRootPart.CFrame
end`,
fly: `-- Script de Modo Voo
loadstring(game:HttpGet("https://pastebin.com/raw/YOURSCRIPTID"))()`,
teleport: `-- Script de Teleporte Rápido
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(100, 50, 100)`
};
function mudarScript() {
const valorSelecionado = document.getElementById("scriptSelect").value;
document.getElementById("scriptBox").value = scripts[valorSelecionado];
}
function copiarScript() {
const box = document.getElementById("scriptBox");
box.select();
document.execCommand("copy");
alert("✅ Script copiado com sucesso!");
}
// Mostrar o primeiro script ao carregar
mudarScript();
</script>
</body>
</html>