SHOW:
|
|
- or go back to the newest paste.
| 1 | repeat wait() | |
| 2 | ||
| 3 | ||
| 4 | ||
| 5 | until game.StarterGui | |
| 6 | local guienabled = false | |
| 7 | local plr = game.Players.LocalPlayer | |
| 8 | local mouse = plr:GetMouse() | |
| 9 | local plrID = plr.UserId | |
| 10 | local mechar = game.Players.LocalPlayer.Character | |
| 11 | ||
| 12 | local function seeker() | |
| 13 | local map = game.Workspace.Map.Map | |
| 14 | local mapchildren = map:GetChildren() | |
| 15 | local me = game.Players.LocalPlayer | |
| 16 | ||
| 17 | local players = game.Players:GetChildren() | |
| 18 | local me = game.Players.LocalPlayer | |
| 19 | local mechar = me.Character | |
| 20 | wait(1) | |
| 21 | for i,v in pairs(players) do | |
| 22 | wait(.01) | |
| 23 | mechar.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame | |
| 24 | end | |
| 25 | end | |
| 26 | ||
| 27 | local function collectcoins() | |
| 28 | local map = game.Workspace.Map.Map | |
| 29 | local mapchildren = map:GetChildren() | |
| 30 | local me = game.Players.LocalPlayer | |
| 31 | for i,v in pairs(game.Workspace.GameObjects:GetChildren()) do | |
| 32 | if v.Name == "Credit" then | |
| 33 | wait(.15) | |
| 34 | me.Character.HumanoidRootPart.CFrame = v.CFrame | |
| 35 | end | |
| 36 | end | |
| 37 | end | |
| 38 | local function ESP() | |
| 39 | local players = game.Players:GetChildren() | |
| 40 | for i,v in pairs(players)do | |
| 41 | wait(.05) | |
| 42 | local billboard = Instance.new("BillboardGui",v.Character.Head)
| |
| 43 | billboard.Size = UDim2.new (0,200,0,50) | |
| 44 | billboard.ExtentsOffset = Vector3.new(0,2.5,0) | |
| 45 | billboard.AlwaysOnTop = true | |
| 46 | wait(.01) | |
| 47 | local textbox = Instance.new ("TextBox",billboard)
| |
| 48 | textbox.Size = UDim2.new (0, 200,0, 50) | |
| 49 | textbox.Name = "textbox" | |
| 50 | wait(.01) | |
| 51 | textbox.TextColor3 = Color3.fromRGB(0,0,255) | |
| 52 | textbox.TextSize = 20 | |
| 53 | textbox.BackgroundTransparency = 1 | |
| 54 | if v.PlayerData.It.Value == true then | |
| 55 | textbox.Text = "It" | |
| 56 | textbox.TextColor3 = Color3.fromRGB(255,0,0) | |
| 57 | else | |
| 58 | textbox.Text = "Hider" | |
| 59 | end | |
| 60 | end | |
| 61 | end | |
| 62 | ||
| 63 | game.Players.LocalPlayer.PlayerScripts.ChatScript.AddChatMessage:Fire("Thank You For Choosing OP GUI! Press Right Control To Open!")
| |
| 64 | game.Players.LocalPlayer.PlayerScripts.ChatScript.AddChatMessage:Fire("This exploit has been created by Plieax")
| |
| 65 | game.Players.LocalPlayer.PlayerScripts.ChatScript.AddChatMessage:Fire(" V:(1.1.1)")
| |
| 66 | ||
| 67 | local newgui = Instance.new("ScreenGui",plr.PlayerGui)
| |
| 68 | newgui.Name = "NewHack" | |
| 69 | newgui.Enabled = false | |
| 70 | ||
| 71 | local MainFrame = Instance.new("Frame",newgui)
| |
| 72 | MainFrame.Size = UDim2.new(.5,0,.5,0) | |
| 73 | MainFrame.Position = UDim2.new() | |
| 74 | MainFrame.Name = "MainFrame" | |
| 75 | MainFrame.Position = UDim2.new(.25,0,.25,0) | |
| 76 | MainFrame.BackgroundColor3 = Color3.fromRGB(16, 42, 220) | |
| 77 | MainFrame.BorderSizePixel = 10 | |
| 78 | MainFrame.BorderColor3 = Color3.fromRGB(0, 32, 96) | |
| 79 | ||
| 80 | mouse.KeyDown:Connect(function(key) | |
| 81 | if key == "1" then | |
| 82 | if guienabled == false then | |
| 83 | newgui.Enabled = true | |
| 84 | guienabled = true | |
| 85 | elseif guienabled == true then | |
| 86 | newgui.Enabled = false | |
| 87 | guienabled = false | |
| 88 | end | |
| 89 | end | |
| 90 | end) | |
| 91 | ||
| 92 | --/Button1 | |
| 93 | local button1 = Instance.new("TextButton",MainFrame)
| |
| 94 | button1.Size = UDim2.new(.25,0,.25,0) | |
| 95 | button1.BackgroundColor3 = Color3.fromRGB(170,0,170) | |
| 96 | button1.TextColor3 = Color3.fromRGB(0,255,255) | |
| 97 | button1.TextScaled = true | |
| 98 | button1.Text = "TP To All" | |
| 99 | button1.Activated:Connect(function() | |
| 100 | seeker() | |
| 101 | end) | |
| 102 | ||
| 103 | ||
| 104 | --/Button2 | |
| 105 | local button2 = Instance.new("TextButton",MainFrame)
| |
| 106 | button2.Size = UDim2.new(.25,0,.25,0) | |
| 107 | button2.BackgroundColor3 = Color3.fromRGB(170,0,170) | |
| 108 | button2.TextColor3 = Color3.fromRGB(0,255,255) | |
| 109 | button2.TextScaled = true | |
| 110 | button2.Text = "Collect All Coins" | |
| 111 | button2.Position = UDim2.new(.25,0,0,0) | |
| 112 | button2.Activated:Connect(function() | |
| 113 | collectcoins() | |
| 114 | end) | |
| 115 | ||
| 116 | local button3 = Instance.new("TextButton",MainFrame)
| |
| 117 | button3.Size = UDim2.new(.25,0,.25,0) | |
| 118 | button3.BackgroundColor3 = Color3.fromRGB(170,0,170) | |
| 119 | button3.TextColor3 = Color3.fromRGB(0,255,255) | |
| 120 | button3.TextScaled = true | |
| 121 | button3.Text = "Speed And Jump Boost" | |
| 122 | button3.Position = UDim2.new(.5,0,0,0) | |
| 123 | button3.Activated:Connect(function() | |
| 124 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 | |
| 125 | game.Players.LocalPlayer.Character.Humanoid.JumpPower = 250 | |
| 126 | end) | |
| 127 | ||
| 128 | local button4 = Instance.new("TextButton",MainFrame)
| |
| 129 | button4.Size = UDim2.new(.25,0,.25,0) | |
| 130 | button4.BackgroundColor3 = Color3.fromRGB(170,0,170) | |
| 131 | button4.TextColor3 = Color3.fromRGB(0,255,255) | |
| 132 | button4.TextScaled = true | |
| 133 | button4.Text = "ESP" | |
| 134 | button4.Position = UDim2.new(.75,0,0,0) | |
| 135 | button4.Activated:Connect(function() | |
| 136 | ESP() | |
| 137 | end) | |
| 138 | ||
| 139 | local function spamchat(s) | |
| 140 | game.Players.LocalPlayer.PlayerScripts.ChatScript.AddChatMessage:Fire(s) | |
| 141 | game.ReplicatedStorage.Remotes.Chatted:FireServer(s) | |
| 142 | end | |
| 143 | ||
| 144 | local tb1 = Instance.new("TextBox",MainFrame)
| |
| 145 | tb1.Size = UDim2.new(.5,0,.25,0) | |
| 146 | tb1.BackgroundColor3 = Color3.fromRGB(170,0,170) | |
| 147 | tb1.TextColor3 = Color3.fromRGB(0,255,255) | |
| 148 | tb1.TextScaled = true | |
| 149 | tb1.Position = UDim2.new(.25,0,0.4,0) | |
| 150 | tb1.Text = "Type Message Here" | |
| 151 | tb1.MultiLine = true | |
| 152 | ||
| 153 | local button5 = Instance.new("TextButton",MainFrame)
| |
| 154 | button5.Size = UDim2.new(.25,0,.25,0) | |
| 155 | button5.BackgroundColor3 = Color3.fromRGB(170,0,170) | |
| 156 | button5.TextColor3 = Color3.fromRGB(0,255,255) | |
| 157 | button5.TextScaled = true | |
| 158 | button5.Text = "Spam Chat" | |
| 159 | button5.Position = UDim2.new(.37,0,0.7,0) | |
| 160 | button5.Activated:Connect(function() | |
| 161 | spamchat(tb1.Text) | |
| 162 | end) | |
| 163 | ||
| 164 | ||
| 165 | ||
| 166 | ||
| 167 | ||
| 168 | ||
| 169 | ||
| 170 | local oof = [[ | |
| 171 | ||
| 172 | ||
| 173 | ||
| 174 | ||
| 175 | ||
| 176 | ||
| 177 | ||
| 178 | ||
| 179 | ||
| 180 | ||
| 181 | ||
| 182 | ||
| 183 | ||
| 184 | ||
| 185 | ||
| 186 | ||
| 187 | ||
| 188 | ||
| 189 | ||
| 190 | ||
| 191 | ]] | |
| 192 | ||
| 193 | ||
| 194 | ||
| 195 | ||
| 196 | local button6 = Instance.new("TextButton",MainFrame)
| |
| 197 | button6.Size = UDim2.new(.25,0,.25,0) | |
| 198 | button6.BackgroundColor3 = Color3.fromRGB(170,0,170) | |
| 199 | button6.TextColor3 = Color3.fromRGB(0,255,255) | |
| 200 | button6.TextScaled = true | |
| 201 | button6.Text = "Clear Chat" | |
| 202 | button6.Position = UDim2.new(.67,0,0.7,0) | |
| 203 | button6.Activated:Connect(function() | |
| 204 | game.Players.LocalPlayer.PlayerScripts.ChatScript.AddChatMessage:Fire(oof) | |
| 205 | game.ReplicatedStorage.Remotes.Chatted:FireServer(oof) | |
| 206 | end) | |
| 207 | ||
| 208 | for i,v in pairs(newgui:GetChildren())do | |
| 209 | wait(.01) | |
| 210 | if v:IsA("TextButton")or v:IsA("TextBox") or v:IsA("TextLabel") then
| |
| 211 | v.BorderSizePixel = 0 | |
| 212 | end | |
| 213 | - | end |
| 213 | + | end |