ViggoCS

Hilton_GUI

Oct 16th, 2017
5,777
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.27 KB | None | 0 0
  1. iPlayer = game.Players.LocalPlayer.Name
  2. local Gui = Instance.new('ScreenGui', game.Players[iPlayer].PlayerGui)
  3. Gui.Name = 'KYS HILTON Gui'
  4. local Grab_f = Instance.new('Frame', Gui)
  5. Grab_f.Name = 'Grab'
  6. Grab_f.Active = true
  7. Grab_f.BackgroundColor3 = Color3.new(0,0,0)
  8. Grab_f.BackgroundTransparency = 0.5
  9. Grab_f.BorderSizePixel = 0
  10. Grab_f.Position = UDim2.new(0.5,-150,0.5,-92)
  11. Grab_f.Size = UDim2.new(0,300,0,24)
  12. Grab_f.Draggable = true
  13.  
  14. --
  15.  
  16. local Close = Instance.new('TextButton', Grab_f)
  17. Close.Name = 'Close'
  18. Close.BackgroundTransparency = 1
  19. Close.Position = UDim2.new(1,-23,0,1)
  20. Close.Size = UDim2.new(0,22,0,22)
  21. Close.Font = 'SourceSans'
  22. Close.FontSize = 'Size18'
  23. Close.TextColor3 = Color3.new(255,255,255)
  24. Close.Text = 'X'
  25.  
  26. --
  27.  
  28. local Body_f = Instance.new('Frame', Grab_f)
  29. Body_f.Name = 'Body'
  30. Body_f.BackgroundColor3 = Color3.new(255,255,255)
  31. Body_f.BackgroundTransparency = 0.5
  32. Body_f.BorderSizePixel = 0
  33. Body_f.Position = UDim2.new(0,0,0,25)
  34. Body_f.Size = UDim2.new(0,300,0,170)
  35.  
  36. Close.TextStrokeTransparency = 0.8
  37.  
  38. --
  39.  
  40. local Title = Instance.new('TextLabel', Grab_f)
  41. Title.Name = 'Title'
  42. Title.BackgroundTransparency = 1
  43. Title.Position = UDim2.new(0,5,0,0)
  44. Title.Size = UDim2.new(0,200,1,0)
  45. Title.Font = 'SourceSansLight'
  46. Title.FontSize = 'Size18'
  47. Title.Text = "KYS HILTON [vermill122]"
  48. Title.TextColor3 = Color3.new(255,255,255)
  49. Title.TextStrokeColor3 = Color3.new(60/255,60/255,60/255)
  50. Title.TextStrokeTransparency = 0.6
  51.  
  52. --
  53.  
  54. local PlayerName = Instance.new('TextBox', Body_f)
  55. PlayerName.Name = 'AudioVal'
  56. PlayerName.BorderSizePixel = 0
  57. PlayerName.Position = UDim2.new(0,10,0,10)
  58. PlayerName.Size = UDim2.new(0,280,0,30)
  59. PlayerName.Font = 'SourceSans'
  60. PlayerName.FontSize = 'Size18'
  61. PlayerName.Text = 'Song ID'
  62. PlayerName.BackgroundColor3 = Color3.new(255,255,255)
  63. PlayerName.TextColor3 = Color3.new(60/255,60/255,60/255)
  64. PlayerName.TextWrapped = true
  65.  
  66. --
  67.  
  68. local Credits = Instance.new('TextLabel', Body_f)
  69. Credits.BackgroundTransparency = 1
  70. Credits.Text = 'Credits to GJWI, Phemzy and Rasp.Pi'
  71. Credits.Position = UDim2.new(0,0,1,0)
  72. Credits.Size = UDim2.new(1,0,0,20)
  73.  
  74. --
  75.  
  76. local Command_God = Instance.new('TextButton', Body_f)
  77. Command_God.Name = 'Audio'
  78. Command_God.BackgroundColor3 = Color3.new(255,170/255,255)
  79. Command_God.BackgroundTransparency = 0.1
  80. Command_God.BorderSizePixel = 0
  81. Command_God.Position = UDim2.new(0,10,0,50)
  82. Command_God.Size = UDim2.new(0,135,0,30)
  83. Command_God.Font = 'SourceSansItalic'
  84. Command_God.FontSize = 'Size18'
  85. Command_God.Text = 'Play song'
  86. Command_God.TextColor3 = Color3.new(0,80,0)
  87. Command_God.TextWrapped = true
  88.  
  89. --
  90.  
  91. local Command_KillAll = Command_God:Clone()
  92. Command_KillAll.Name = 'CuffBypass'
  93. Command_KillAll.Parent = Body_f
  94. Command_KillAll.Position = UDim2.new(0,155,0,50)
  95. Command_KillAll.Text = 'Bypass Handcuffs'
  96.  
  97. --
  98.  
  99. local Command_KillPlr = Command_God:Clone()
  100. Command_KillPlr.Name = 'Spam'
  101. Command_KillPlr.Parent = Body_f
  102. Command_KillPlr.Position = UDim2.new(0,10,0,130)
  103. Command_KillPlr.Text = 'SPAM'
  104.  
  105. --
  106.  
  107. local Command_TpMe = Instance.new('TextBox', Body_f)
  108. Command_TpMe.Name = 'SpamVal'
  109. Command_TpMe.Parent = Body_f
  110. Command_TpMe.BackgroundColor3 = Color3.new(255,170/255,255)
  111. Command_TpMe.BackgroundTransparency = 0.1
  112. Command_TpMe.BorderSizePixel = 0
  113. Command_TpMe.Position = UDim2.new(0,10,0,90)
  114. Command_TpMe.Text = 'Text To Spam'
  115. Command_TpMe.Size = UDim2.new(0,280,0,30)
  116. Command_TpMe.Font = 'SourceSans'
  117. Command_TpMe.FontSize = 'Size18'
  118. Command_TpMe.Text = 'Text to spam'
  119. Command_TpMe.BackgroundColor3 = Color3.new(255,255,255)
  120. Command_TpMe.TextColor3 = Color3.new(60/255,60/255,60/255)
  121. Command_TpMe.TextWrapped = true
  122.  
  123. local Command_TpTo = Command_God:Clone()
  124. Command_TpTo.Name = 'Fly'
  125. Command_TpTo.Parent = Body_f
  126. Command_TpTo.Position = UDim2.new(0,155,0,130)
  127. Command_TpTo.Text = 'Fly [e to toggle]'
  128.  
  129. --[[
  130.  
  131.  
  132. break --------------------------------------------------------------------------------------------------
  133.  
  134.  
  135. ]]
  136.  
  137. Command_God.MouseButton1Down:connect(function()
  138. game.ReplicatedStorage.musicEvents.addSong:FireServer(PlayerName.Text)
  139. end)
  140.  
  141. --
  142.  
  143. Command_KillAll.MouseButton1Down:connect(function()
  144. local Playr = "LocalPlayer"
  145. local Anchored = false
  146.  
  147. if Anchored == true then
  148. local Anchored2 = false
  149. else
  150. local Anchored2 = true
  151. end
  152.  
  153. game.Players[Playr].Character["Head"].Anchored = Anchored
  154. game.Players[Playr].Character["Torso"].Anchored = Anchored
  155. game.Players[Playr].Character["Right Arm"].Anchored = Anchored
  156. game.Players[Playr].Character["Left Arm"].Anchored = Anchored
  157. game.Players[Playr].Character["Right Leg"].Anchored = Anchored
  158. game.Players[Playr].Character["Left Leg"].Anchored = Anchored
  159. wait(2)
  160. game.Players[Playr].Character["Head"].Anchored = Anchored2
  161. game.Players[Playr].Character["Torso"].Anchored = Anchored2
  162. game.Players[Playr].Character["Right Arm"].Anchored = Anchored2
  163. game.Players[Playr].Character["Left Arm"].Anchored = Anchored2
  164. game.Players[Playr].Character["Right Leg"].Anchored = Anchored2
  165. game.Players[Playr].Character["Left Leg"].Anchored = Anchored2
  166. end)
  167.  
  168. --
  169.  
  170. Command_KillPlr.MouseButton1Down:connect(function()
  171. while wait() do
  172. wait(0.5)
  173. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Command_TpMe.Text, "All")
  174. end
  175. end)
  176.  
  177. --
  178.  
  179. Close.MouseButton1Down:connect(function()
  180. if Body_f.Visible == true then
  181. Body_f.Visible = false
  182. Close.Text = '+'
  183. elseif Body_f.Visible == false then
  184. Body_f.Visible = true
  185. Close.Text = 'X'
  186. end
  187. end)
  188.  
  189. --
  190.  
  191. Command_TpTo.MouseButton1Down:connect(function()
  192. repeat wait()
  193. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  194. local mouse = game.Players.LocalPlayer:GetMouse()
  195. repeat wait() until mouse
  196. local plr = game.Players.LocalPlayer
  197. local torso = plr.Character.Torso
  198. local flying = true
  199. local deb = true
  200. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  201. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  202. local maxspeed = 50
  203. local speed = 0
  204.  
  205. function Fly()
  206. local bg = Instance.new("BodyGyro", torso)
  207. bg.P = 9e4
  208. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  209. bg.cframe = torso.CFrame
  210. local bv = Instance.new("BodyVelocity", torso)
  211. bv.velocity = Vector3.new(0,0.1,0)
  212. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  213. repeat wait()
  214. plr.Character.Humanoid.PlatformStand = true
  215. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  216. speed = speed+.5+(speed/maxspeed)
  217. if speed > maxspeed then
  218. speed = maxspeed
  219. end
  220. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  221. speed = speed-1
  222. if speed < 0 then
  223. speed = 0
  224. end
  225. end
  226. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  227. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  228. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  229. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  230. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  231. else
  232. bv.velocity = Vector3.new(0,0.1,0)
  233. end
  234. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  235. until not flying
  236. ctrl = {f = 0, b = 0, l = 0, r = 0}
  237. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  238. speed = 0
  239. bg:Destroy()
  240. bv:Destroy()
  241. plr.Character.Humanoid.PlatformStand = false
  242. end
  243. mouse.KeyDown:connect(function(key)
  244. if key:lower() == "e" then
  245. if flying then flying = false
  246. else
  247. flying = true
  248. Fly()
  249. end
  250. elseif key:lower() == "w" then
  251. ctrl.f = 1
  252. elseif key:lower() == "s" then
  253. ctrl.b = -1
  254. elseif key:lower() == "a" then
  255. ctrl.l = -1
  256. elseif key:lower() == "d" then
  257. ctrl.r = 1
  258. end
  259. end)
  260. mouse.KeyUp:connect(function(key)
  261. if key:lower() == "w" then
  262. ctrl.f = 0
  263. elseif key:lower() == "s" then
  264. ctrl.b = 0
  265. elseif key:lower() == "a" then
  266. ctrl.l = 0
  267. elseif key:lower() == "d" then
  268. ctrl.r = 0
  269. end
  270. end)
  271. Fly()
  272. end)
  273.  
  274. --
  275.  
  276. while wait() do
  277. Credits.TextColor3 = Color3.new(1,0,0)
  278. for i=1,15 do
  279. game:GetService("RunService").RenderStepped:wait()
  280. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g+(17/255),Credits.TextColor3.b)
  281. end
  282. for i=1,15 do
  283. game:GetService("RunService").RenderStepped:wait()
  284. Credits.TextColor3 = Color3.new(Credits.TextColor3.r-(17/255),Credits.TextColor3.g,Credits.TextColor3.b)
  285. end
  286. for i=1,15 do
  287. game:GetService("RunService").RenderStepped:wait()
  288. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g,Credits.TextColor3.b+(17/255))
  289. end
  290. for i=1,15 do
  291. game:GetService("RunService").RenderStepped:wait()
  292. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g-(17/255),Credits.TextColor3.b)
  293. end
  294. for i=1,15 do
  295. game:GetService("RunService").RenderStepped:wait()
  296. Credits.TextColor3 = Color3.new(Credits.TextColor3.r+(17/255),Credits.TextColor3.g,Credits.TextColor3.b)
  297. end
  298. for i=1,15 do
  299. game:GetService("RunService").RenderStepped:wait()
  300. Credits.TextColor3 = Color3.new(Credits.TextColor3.r,Credits.TextColor3.g,Credits.TextColor3.b-(17/255))
  301. end
  302. end
Add Comment
Please, Sign In to add comment