SQUIDMAN740

RX GUI V.1

Mar 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.69 KB | None | 0 0
  1. --Made by rewaved#6831 / rewaved @ v3rmillion.net
  2.  
  3. -- Instances:
  4. local RX = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Top = Instance.new("Frame")
  7. local Top_2 = Instance.new("TextLabel")
  8. local X = Instance.new("TextButton")
  9. local Buttons = Instance.new("Frame")
  10. local Speed = Instance.new("TextBox")
  11. local TP = Instance.new("TextBox")
  12. local NOCLIP = Instance.new("TextButton")
  13. local Jump = Instance.new("TextBox")
  14. local SpeedB = Instance.new("TextButton")
  15. local JumpB = Instance.new("TextButton")
  16. local TPB = Instance.new("TextButton")
  17. local Credits = Instance.new("TextLabel")
  18. local SideFrame = Instance.new("Frame")
  19. local SideButton = Instance.new("TextButton")
  20. local function notify(...)
  21.     game.StarterGui:SetCore('SendNotification',...)
  22. end
  23. local nc = true
  24. local man = game.Players.LocalPlayer
  25. local running = false
  26. --Properties:
  27. RX.Name = "RX"
  28. RX.Parent = game.CoreGui
  29. RX.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  30.  
  31. Main.Name = "Main"
  32. Main.Parent = RX
  33. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  34. Main.BackgroundTransparency = 0.40000000596046
  35. Main.Position = UDim2.new(0.718152881, 0, 0.383495122, 0)
  36. Main.Size = UDim2.new(0, 318, 0, 192)
  37. Main.Active =true
  38. Main.Draggable = true
  39.  
  40. Top.Name = "Top"
  41. Top.Parent = Main
  42. Top.BackgroundColor3 = Color3.new(1, 0, 0)
  43. Top.BackgroundTransparency = 0.25
  44. Top.BorderColor3 = Color3.new(0, 0, 0)
  45. Top.BorderSizePixel = 2
  46. Top.Size = UDim2.new(0, 318, 0, 36)
  47.  
  48. Top_2.Name = "Top"
  49. Top_2.Parent = Top
  50. Top_2.BackgroundColor3 = Color3.new(1, 1, 1)
  51. Top_2.BackgroundTransparency = 1
  52. Top_2.Position = UDim2.new(-0.1430545, 0, 0, 0)
  53. Top_2.Size = UDim2.new(0, 407, 0, 36)
  54. Top_2.Text = "RX V.1"
  55. Top_2.TextColor3 = Color3.new(1, 1, 1)
  56. Top_2.TextSize = 20
  57. Top_2.TextStrokeTransparency = 0
  58. Top_2.TextWrapped = true
  59.  
  60. X.Name = "X"
  61. X.Parent = Top
  62. X.BackgroundColor3 = Color3.new(1, 1, 1)
  63. X.BackgroundTransparency = 1
  64. X.Position = UDim2.new(0.918918908, 0, 0, 0)
  65. X.Size = UDim2.new(0, 33, 0, 28)
  66. X.Font = Enum.Font.SourceSans
  67. X.Text = "X"
  68. X.TextColor3 = Color3.new(1, 1, 1)
  69. X.TextScaled = true
  70. X.TextSize = 14
  71. X.TextStrokeTransparency = 0
  72. X.TextWrapped = true
  73. X.MouseButton1Click:Connect(function()
  74.     Main.Visible = false
  75.     SideButton.Text = ">"
  76. end)
  77.  
  78. Buttons.Name = "Buttons"
  79. Buttons.Parent = Main
  80. Buttons.BackgroundColor3 = Color3.new(1, 1, 1)
  81. Buttons.BackgroundTransparency = 1
  82. Buttons.BorderColor3 = Color3.new(0, 0, 0)
  83. Buttons.BorderSizePixel = 2
  84. Buttons.Position = UDim2.new(0.0415182561, 0, 0.239583328, 0)
  85. Buttons.Size = UDim2.new(0, 291, 0, 117)
  86.  
  87. Speed.Name = "Speed"
  88. Speed.Parent = Buttons
  89. Speed.BackgroundColor3 = Color3.new(1, 1, 1)
  90. Speed.BorderColor3 = Color3.new(0, 0, 0)
  91. Speed.BorderSizePixel = 2
  92. Speed.Position = UDim2.new(0.0935665071, 0, 0.0916030779, 0)
  93. Speed.Size = UDim2.new(0, 94, 0, 33)
  94. Speed.Font = Enum.Font.Cartoon
  95. Speed.PlaceholderColor3 = Color3.new(1, 1, 1)
  96. Speed.PlaceholderText = "Enter WalkSpeed here..."
  97. Speed.Text = ""
  98. Speed.TextColor3 = Color3.new(1, 1, 1)
  99. Speed.TextScaled = true
  100. Speed.TextSize = 14
  101. Speed.TextStrokeTransparency = 0
  102. Speed.TextWrapped = true
  103.  
  104. TP.Name = "TP"
  105. TP.Parent = Buttons
  106. TP.BackgroundColor3 = Color3.new(1, 1, 1)
  107. TP.BorderColor3 = Color3.new(0, 0, 0)
  108. TP.BorderSizePixel = 2
  109. TP.Position = UDim2.new(0.553275228, 0, 0.0916030779, 0)
  110. TP.Size = UDim2.new(0, 94, 0, 33)
  111. TP.Font = Enum.Font.Cartoon
  112. TP.PlaceholderColor3 = Color3.new(1, 1, 1)
  113. TP.PlaceholderText = "TP to player..."
  114. TP.Text = ""
  115. TP.TextColor3 = Color3.new(1, 1, 1)
  116. TP.TextScaled = true
  117. TP.TextSize = 14
  118. TP.TextStrokeTransparency = 0
  119. TP.TextWrapped = true
  120.  
  121. NOCLIP.Name = "NOCLIP"
  122. NOCLIP.Parent = Buttons
  123. NOCLIP.BackgroundColor3 = Color3.new(1, 0, 0)
  124. NOCLIP.BackgroundTransparency = 0.30000001192093
  125. NOCLIP.BorderColor3 = Color3.new(0, 0, 0)
  126. NOCLIP.BorderSizePixel = 2
  127. NOCLIP.Position = UDim2.new(0.552050292, 0, 0.589743614, 0)
  128. NOCLIP.Size = UDim2.new(0, 94, 0, 33)
  129. NOCLIP.Font = Enum.Font.Cartoon
  130. NOCLIP.Text = "Noclip toggle"
  131. NOCLIP.TextColor3 = Color3.new(1, 1, 1)
  132. NOCLIP.TextSize = 14
  133. NOCLIP.TextStrokeTransparency = 0
  134. NOCLIP.MouseButton1Click:Connect(function()
  135.     nc = not nc
  136.     if nc == true then
  137.         running = true
  138.         notify({Title="RX Notification";Text="Noclip enabled";Duration=2})
  139.         game:GetService("RunService").Stepped:Connect(function()
  140.             if running == true and man.Character ~= nil then
  141.                 for _,v in pairs(man.Character:GetDescendants()) do
  142.                     if v.ClassName == "Part" and v.CanCollide == true then
  143.                         v.CanCollide = false
  144.                         NOCLIP.BackgroundColor3 = Color3.new(0,255,0)
  145.                     end
  146.                 end
  147.             end
  148.         end)
  149.     elseif nc == false then
  150.         running = false
  151.         man.Character.Torso.CanCollide = true
  152.         man.Character.Head.CanCollide = true
  153.         notify({Title="RX Notification";Text="Noclip disabled";Duration=2;})
  154.         NOCLIP.BackgroundColor3 = Color3.new(1, 0, 0)
  155.     end
  156. end)
  157.  
  158. Jump.Name = "Jump"
  159. Jump.Parent = Buttons
  160. Jump.BackgroundColor3 = Color3.new(1, 1, 1)
  161. Jump.BorderColor3 = Color3.new(0, 0, 0)
  162. Jump.BorderSizePixel = 2
  163. Jump.Position = UDim2.new(0.0935665071, 0, 0.591113508, 0)
  164. Jump.Size = UDim2.new(0, 94, 0, 33)
  165. Jump.Font = Enum.Font.Cartoon
  166. Jump.PlaceholderColor3 = Color3.new(1, 1, 1)
  167. Jump.PlaceholderText = "Enter jump height here..."
  168. Jump.Text = ""
  169. Jump.TextColor3 = Color3.new(1, 1, 1)
  170. Jump.TextScaled = true
  171. Jump.TextSize = 14
  172. Jump.TextStrokeTransparency = 0
  173. Jump.TextWrapped = true
  174.  
  175. SpeedB.Name = "SpeedB"
  176. SpeedB.Parent = Buttons
  177. SpeedB.BackgroundColor3 = Color3.new(0, 0, 0)
  178. SpeedB.BorderColor3 = Color3.new(0, 0, 0)
  179. SpeedB.BorderSizePixel = 0
  180. SpeedB.Position = UDim2.new(0.0935664773, 0, 0.373654366, 0)
  181. SpeedB.Size = UDim2.new(0, 93, 0, 16)
  182. SpeedB.Font = Enum.Font.Cartoon
  183. SpeedB.Text = "Change speed"
  184. SpeedB.TextColor3 = Color3.new(1, 1, 1)
  185. SpeedB.TextSize = 14
  186. SpeedB.TextStrokeTransparency = 0
  187. SpeedB.MouseButton1Down:Connect(function()
  188.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = SpeedB.Parent.Speed.Text
  189.     notify({Title="RX Notification";Text="Walkspeed set to"..SpeedB.Parent.Speed.Text;})
  190. end)
  191.  
  192. JumpB.Name = "JumpB"
  193. JumpB.Parent = Buttons
  194. JumpB.BackgroundColor3 = Color3.new(0, 0, 0)
  195. JumpB.BorderColor3 = Color3.new(0, 0, 0)
  196. JumpB.BorderSizePixel = 0
  197. JumpB.Position = UDim2.new(0.0906487629, 0, 0.863504827, 0)
  198. JumpB.Size = UDim2.new(0, 93, 0, 16)
  199. JumpB.Font = Enum.Font.Cartoon
  200. JumpB.Text = "Change jump"
  201. JumpB.TextColor3 = Color3.new(1, 1, 1)
  202. JumpB.TextSize = 14
  203. JumpB.TextStrokeTransparency = 0
  204. JumpB.MouseButton1Click:Connect(function()
  205.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumpB.Parent.Jump.Text
  206.     notify({Title="RX Notification";Text="Jump height set to"..JumpB.Parent.Jump.Text;})
  207. end)
  208.  
  209. TPB.Name = "TPB"
  210. TPB.Parent = Buttons
  211. TPB.BackgroundColor3 = Color3.new(0, 0, 0)
  212. TPB.BorderColor3 = Color3.new(0, 0, 0)
  213. TPB.BorderSizePixel = 0
  214. TPB.Position = UDim2.new(0.554566264, 0, 0.367778301, 0)
  215. TPB.Size = UDim2.new(0, 93, 0, 16)
  216. TPB.Font = Enum.Font.Cartoon
  217. TPB.Text = "TP"
  218. TPB.TextColor3 = Color3.new(1, 1, 1)
  219. TPB.TextSize = 14
  220. TPB.TextStrokeTransparency = 0
  221. TPB.MouseButton1Click:Connect(function()
  222.     local Target = TPB.Parent.TP.Text
  223.    
  224. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  225.     game.Players[Target].Character.HumanoidRootPart.CFrame
  226.     notify({Title="RX Notification";Text="Teleported to"..TPB.Parent.TP.Text;})
  227. end)
  228.  
  229. Credits.Name = "Credits"
  230. Credits.Parent = Main
  231. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  232. Credits.BackgroundTransparency = 1
  233. Credits.Position = UDim2.new(0, 0, 0.864583313, 0)
  234. Credits.Size = UDim2.new(0, 318, 0, 26)
  235. Credits.Text = "Made by rewaved#6831 / rewaved @ v3rmillion.net"
  236. Credits.TextColor3 = Color3.new(0, 0, 0)
  237. Credits.TextStrokeColor3 = Color3.new(1, 1, 1)
  238. Credits.TextStrokeTransparency = 0
  239. Credits.TextWrapped = true
  240.  
  241. SideFrame.Name = "SideFrame"
  242. SideFrame.Parent = RX
  243. SideFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  244. SideFrame.Position = UDim2.new(-0.00955414027, 0, 0.45631063, 0)
  245. SideFrame.Size = UDim2.new(0, 44, 0, 40)
  246. SideFrame.Style = Enum.FrameStyle.RobloxRound
  247.  
  248. SideButton.Name = "SideButton"
  249. SideButton.Parent = SideFrame
  250. SideButton.BackgroundColor3 = Color3.new(1, 1, 1)
  251. SideButton.BackgroundTransparency = 1
  252. SideButton.Position = UDim2.new(-0.0334335044, 0, -0.540906072, 0)
  253. SideButton.Size = UDim2.new(0, 39, 0, 50)
  254. SideButton.Font = Enum.Font.SourceSans
  255. SideButton.Text = "<"
  256. SideButton.TextColor3 = Color3.new(0, 0, 0)
  257. SideButton.TextScaled = true
  258. SideButton.TextSize = 14
  259. SideButton.TextStrokeColor3 = Color3.new(1, 1, 1)
  260. SideButton.TextStrokeTransparency = 0
  261. SideButton.TextWrapped = true
  262. SideButton.MouseButton1Click:Connect(function()
  263.     Main.Visible = true
  264.     SideButton.Text = "<"
  265. end)
Add Comment
Please, Sign In to add comment