View difference between Paste ID: ELZ1puHC and d361hytv
SHOW: | | - or go back to the newest paste.
1
-- Game Link: https://www.roblox.com/games/887332628/RB-World-2
2
-- Gui to Lua
3
-- Version: 3.1
4
5
-- Instances:
6
7
local ScreenGui = Instance.new("ScreenGui")
8
local OpenFrame = Instance.new("Frame")
9
local Open = Instance.new("TextButton")
10
local Main = Instance.new("Frame")
11
local Close = Instance.new("TextButton")
12
local Credits = Instance.new("TextLabel")
13
local DropBall = Instance.new("TextButton")
14
local Aimbot = Instance.new("TextButton")
15
local Noclip = Instance.new("TextButton")
16
local Sonic = Instance.new("TextButton")
17
18
--Properties:
19
20
ScreenGui.Parent = game.CoreGui
21
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
22
23
OpenFrame.Name = "OpenFrame"
24
OpenFrame.Parent = ScreenGui
25
OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 85, 0)
26
OpenFrame.BorderSizePixel = 0
27
OpenFrame.Position = UDim2.new(-0.0128410915, 0, 0.666666687, 0)
28
OpenFrame.Size = UDim2.new(0, 100, 0, 28)
29
30
Open.Name = "Open"
31
Open.Parent = OpenFrame
32
Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
33
Open.BackgroundTransparency = 1.000
34
Open.BorderSizePixel = 0
35
Open.Position = UDim2.new(0.189999998, 0, 0.214285716, 0)
36
Open.Size = UDim2.new(0, 69, 0, 15)
37
Open.Font = Enum.Font.SourceSans
38
Open.Text = "Open"
39
Open.TextColor3 = Color3.fromRGB(0, 0, 0)
40
Open.TextSize = 14.000
41
Open.TextWrapped = true
42
Open.MouseButton1Down:connect(function()
43
Main.Visible = true
44
OpenFrame.Visible = false
45
end)
46
47
Main.Name = "Main"
48
Main.Parent = ScreenGui
49
Main.Active = true
50
Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
51
Main.BorderSizePixel = 0
52
Main.Position = UDim2.new(0.260032117, 0, 0.285046726, 0)
53
Main.Size = UDim2.new(0, 362, 0, 201)
54
Main.Draggable = true 
55
56
Close.Name = "Close"
57
Close.Parent = Main
58
Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
59
Close.BackgroundTransparency = 1.000
60
Close.BorderSizePixel = 0
61
Close.Position = UDim2.new(0.939226508, 0, 0, 0)
62
Close.Size = UDim2.new(0, 22, 0, 17)
63
Close.Font = Enum.Font.SourceSans
64
Close.Text = "X"
65
Close.TextColor3 = Color3.fromRGB(255, 0, 0)
66
Close.TextSize = 14.000
67
Close.TextWrapped = true
68
Close.MouseButton1Down:connect(function()
69
OpenFrame.Visible = true
70
Main.Visible = false
71
end)
72
73
Credits.Name = "Credits"
74
Credits.Parent = Main
75
Credits.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
76
Credits.BorderSizePixel = 0
77
Credits.Position = UDim2.new(0, 0, 0.940298498, 0)
78
Credits.Size = UDim2.new(0, 362, 0, 12)
79
Credits.Font = Enum.Font.SourceSans
80
Credits.Text = "Gui/Script Made by me (PlsNoSellMeDude)"
81
Credits.TextColor3 = Color3.fromRGB(255, 255, 255)
82
Credits.TextSize = 14.000
83
Credits.TextWrapped = true
84
85
DropBall.Name = "DropBall"
86
DropBall.Parent = Main
87
DropBall.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
88
DropBall.BorderSizePixel = 0
89
DropBall.Position = UDim2.new(0.0331491716, 0, 0.169154227, 0)
90
DropBall.Size = UDim2.new(0, 95, 0, 40)
91
DropBall.Font = Enum.Font.SourceSans
92
DropBall.Text = "DropBall"
93
DropBall.TextColor3 = Color3.fromRGB(0, 0, 0)
94
DropBall.TextSize = 14.000
95
DropBall.TextWrapped = true
96
DropBall.MouseButton1Click:Connect(function()
97
local descendants = game.workspace:GetDescendants()
98
 
99
for index, descendants in pairs(descendants) do
100
 if descendants .Name == "Basketball" then
101
 descendants.block:FireServer()
102
 end
103
 end
104
 
105
end)
106
107
Aimbot.Name = "Aimbot"
108
Aimbot.Parent = Main
109
Aimbot.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
110
Aimbot.BorderSizePixel = 0
111
Aimbot.Position = UDim2.new(0.701657474, 0, 0.169154227, 0)
112
Aimbot.Size = UDim2.new(0, 95, 0, 40)
113
Aimbot.Font = Enum.Font.SourceSans
114
Aimbot.Text = "Aimbot"
115
Aimbot.TextColor3 = Color3.fromRGB(0, 0, 0)
116
Aimbot.TextSize = 14.000
117
Aimbot.TextWrapped = true
118
Aimbot.MouseButton1Down:connect(function()
119
loadstring(game:HttpGet("https://pastebin.com/raw/zzxzEbKM"))()
120
 
121
end)
122
123
Noclip.Name = "Noclip"
124
Noclip.Parent = Main
125
Noclip.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
126
Noclip.BorderSizePixel = 0
127
Noclip.Position = UDim2.new(0.0331491716, 0, 0.641791046, 0)
128
Noclip.Size = UDim2.new(0, 95, 0, 40)
129
Noclip.Font = Enum.Font.SourceSans
130
Noclip.Text = "Noclip (Press F)"
131
Noclip.TextColor3 = Color3.fromRGB(0, 0, 0)
132
Noclip.TextSize = 14.000
133
Noclip.TextWrapped = true
134
Noclip.MouseButton1Down:connect(function()
135
noclip = false
136
game:GetService('RunService').Stepped:connect(function()
137
if noclip then
138
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
139
end
140
end)
141
 
142
local plr = game.Players.LocalPlayer
143
local mouse = plr:GetMouse()
144
mouse.KeyDown:connect(function(key)
145
 
146
if key == "f" then
147
noclip = not noclip
148
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
149
 
150
end
151
end)
152
end)
153
154
Sonic.Name = "Sonic"
155
Sonic.Parent = Main
156
Sonic.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
157
Sonic.BorderSizePixel = 0
158
Sonic.Position = UDim2.new(0.701657474, 0, 0.641791046, 0)
159
Sonic.Size = UDim2.new(0, 95, 0, 40)
160
Sonic.Font = Enum.Font.SourceSans
161
Sonic.Text = "Sonic"
162
Sonic.TextColor3 = Color3.fromRGB(0, 0, 0)
163
Sonic.TextSize = 14.000
164
Sonic.TextWrapped = true
165
Sonic.MouseButton1Down:connect(function()
166
    game.Players.LocalPlayer.Character.Shirt.ShirtTemplate="rbxassetid://166997534"game.Players.LocalPlayer.Character.Pants.PantsTemplate="rbxassetid://37046037"game.Players.LocalPlayer.Character.Hat.Mesh.MeshId="rbxassetid://430064078"game.Players.LocalPlayer.Character.Hat.Mesh.TextureId="rbxassetid://430064079"game.Players.LocalPlayer.Character.ShoeL.TextureID="rbxassetid://1135791438"game.Players.LocalPlayer.Character.ShoeR.TextureID="rbxassetid://1135791544"
167
end)