Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.69 KB | None | 0 0
  1. --made by modcenter
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local main = Instance.new("Frame")
  4. local ImageLabel = Instance.new("ImageLabel")
  5. local title = Instance.new("TextLabel")
  6. local fly = Instance.new("TextButton")
  7. local noclip = Instance.new("TextButton")
  8. local drophats = Instance.new("TextButton")
  9. local jumppower = Instance.new("TextButton")
  10. local fire = Instance.new("TextButton")
  11. local one = Instance.new("TextButton")
  12. local two = Instance.new("TextButton")
  13. local three = Instance.new("TextButton")
  14. local close = Instance.new("TextButton")
  15. local openmain = Instance.new("Frame")
  16. local open = Instance.new("TextButton")
  17. --Properties:
  18. ScreenGui.Parent = game.CoreGui
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. main.Name = "main"
  22. main.Parent = ScreenGui
  23. main.BackgroundColor3 = Color3.new(1, 1, 1)
  24. main.Position = UDim2.new(0.0280373823, 0, 0.30864197, 0)
  25. main.Size = UDim2.new(0, 313, 0, 272)
  26. main.Visible = false
  27. main.Active = true
  28. main.Draggable = true
  29.  
  30. ImageLabel.Parent = main
  31. ImageLabel.BackgroundColor3 = Color3.new(0, 1, 1)
  32. ImageLabel.BorderSizePixel = 0
  33. ImageLabel.Position = UDim2.new(0, 0, 0.131260931, 0)
  34. ImageLabel.Size = UDim2.new(0, 313, 0, 235)
  35. ImageLabel.Image = "rbxgameasset://Images/merch"
  36.  
  37. title.Name = "title"
  38. title.Parent = main
  39. title.BackgroundColor3 = Color3.new(0, 0, 1)
  40. title.Position = UDim2.new(0.0127795525, 0, -0.0073529412, 0)
  41. title.Size = UDim2.new(0, 313, 0, 44)
  42. title.Font = Enum.Font.Cartoon
  43. title.Text = "ChrisSoulYT"
  44. title.TextColor3 = Color3.new(0, 0, 0)
  45. title.TextScaled = true
  46. title.TextSize = 14
  47. title.TextWrapped = true
  48.  
  49. fly.Name = "fly"
  50. fly.Parent = main
  51. fly.BackgroundColor3 = Color3.new(0, 0, 1)
  52. fly.Position = UDim2.new(0.0158415847, 0, 0.174917489, 0)
  53. fly.Size = UDim2.new(0, 123, 0, 50)
  54. fly.Font = Enum.Font.GothamBold
  55. fly.Text = "fly"
  56. fly.TextColor3 = Color3.new(0, 0, 0)
  57. fly.TextScaled = true
  58. fly.TextSize = 14
  59. fly.TextWrapped = true
  60. fly.MouseButton1Down:connect(function()
  61. (Local Script)
  62.  
  63. Player = game.Players.LocalPlayer
  64. Mouse = Player:GetMouse()
  65. game.Workspace:WaitForChild(Player.Name)
  66. ReplicatedStorage = game:GetService("ReplicatedStorage")
  67. RemoteEvent = ReplicatedStorage:WaitForChild("Flying")
  68. RemoteEvent2 = ReplicatedStorage:WaitForChild("FlyingOff")
  69. Debounce = 1
  70.  
  71. game:GetService("UserInputService").InputBegan:Connect(function(input)
  72. if input.KeyCode == Enum.KeyCode.F and Debounce == 1 then -- if Player press F and Debounce = 1
  73. Debounce = 2 -- Debounce = 2
  74. RemoteEvent:FireServer() -- Fire remote
  75. for i = 1, math.huge do -- Loop for Player's humanoid root part follows mouse
  76. if Debounce == 2 then -- if debounce = 2 then follow mouse
  77. wait()
  78. Player.Character.HumanoidRootPart.CFrame = CFrame.new(Player.Character.HumanoidRootPart.Position,Mouse.Hit.p)
  79. else -- else break the loop
  80. break
  81. end
  82. end
  83. end
  84. end)
  85.  
  86.  
  87.  
  88. game:GetService("UserInputService").InputEnded:Connect(function(input)
  89. if input.KeyCode == Enum.KeyCode.F and Debounce == 2 then -- if Player release F and Debounce == 2
  90. script.Disabled = true -- script disabled (Debounce = 1)
  91.  
  92. RemoteEvent2:FireServer() -- fire second remote
  93. wait(3) -- wait time
  94. script.Disabled = false -- script enabled
  95. end
  96. end)
  97.  
  98.  
  99.  
  100. (Remote event script)
  101.  
  102.  
  103. ReplicatedStorage = game:GetService("ReplicatedStorage")
  104. RemoteEvent = ReplicatedStorage:WaitForChild("Flying")
  105.  
  106. RemoteEvent2 = ReplicatedStorage:WaitForChild("FlyingOff")
  107.  
  108. RemoteEvent.OnServerEvent:Connect(function(Player)
  109.  
  110. Vel = Instance.new("BodyVelocity", Player.Character.HumanoidRootPart) -- Create new velicoty inside humanoid root part
  111. Vel.Name = "FlyVelocity"
  112. Vel.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  113. for i = 1, math.huge do -- loop for Velocity
  114. if Player.Character.HumanoidRootPart:FindFirstChild("FlyVelocity") ~= nil then -- if velocity exists
  115. Vel.Velocity = Player.Character.HumanoidRootPart.CFrame.lookVector*100
  116. else -- else break the loop
  117. break
  118.  
  119. end
  120. wait()
  121. end
  122.  
  123. end)
  124.  
  125.  
  126. RemoteEvent2.OnServerEvent:Connect(function(Player)
  127. Vel:Destroy() -- destroy velocity
  128.  
  129.  
  130. end)
  131. end)
  132.  
  133. noclip.Name = "noclip"
  134. noclip.Parent = main
  135. noclip.BackgroundColor3 = Color3.new(0, 0, 1)
  136. noclip.Position = UDim2.new(0.0158415847, 0, 0.376237631, 0)
  137. noclip.Size = UDim2.new(0, 123, 0, 50)
  138. noclip.Font = Enum.Font.GothamBlack
  139. noclip.Text = "noclip"
  140. noclip.TextColor3 = Color3.new(0, 0, 0)
  141. noclip.TextScaled = true
  142. noclip.TextSize = 14
  143. noclip.TextWrapped = true
  144. noclip.MouseButton1Down:connect(function()
  145. loadstring(game:HttpGet(('https://pastebin.com/raw/QVV1Qz0r'),true))()
  146. end)
  147.  
  148. drophats.Name = "drop hats"
  149. drophats.Parent = main
  150. drophats.BackgroundColor3 = Color3.new(0, 0, 1)
  151. drophats.Position = UDim2.new(0.0158415847, 0, 0.597359717, 0)
  152. drophats.Size = UDim2.new(0, 123, 0, 50)
  153. drophats.Font = Enum.Font.GothamBlack
  154. drophats.Text = "drop hats"
  155. drophats.TextColor3 = Color3.new(0, 0, 0)
  156. drophats.TextScaled = true
  157. drophats.TextSize = 14
  158. drophats.TextWrapped = true
  159. drophats.MouseButton1Down:connect(function()
  160. loadstring(game:HttpGet(('https://pastebin.com/raw/4dMKmiaK'),true))()
  161. end)
  162.  
  163. jumppower.Name = "jump power"
  164. jumppower.Parent = main
  165. jumppower.BackgroundColor3 = Color3.new(0, 0, 1)
  166. jumppower.Position = UDim2.new(0.0158415847, 0, 0.813385785, 0)
  167. jumppower.Size = UDim2.new(0, 123, 0, 50)
  168. jumppower.Font = Enum.Font.GothamBlack
  169. jumppower.Text = "jump power"
  170. jumppower.TextColor3 = Color3.new(0, 0, 0)
  171. jumppower.TextScaled = true
  172. jumppower.TextSize = 14
  173. jumppower.TextWrapped = true
  174. jumppower.MouseButton1Down:connect(function()
  175. loadstring(game:HttpGet(('https://pastebin.com/raw/pcX8WcxT'),true))()
  176.  
  177. end)
  178.  
  179. fire.Name = "fire"
  180. fire.Parent = main
  181. fire.BackgroundColor3 = Color3.new(0, 0, 1)
  182. fire.Position = UDim2.new(0.513401449, 0, 0.17124103, 0)
  183. fire.Size = UDim2.new(0, 123, 0, 50)
  184. fire.Font = Enum.Font.GothamBlack
  185. fire.Text = "fire"
  186. fire.TextColor3 = Color3.new(0, 0, 0)
  187. fire.TextScaled = true
  188. fire.TextSize = 14
  189. fire.TextWrapped = true
  190. fire.MouseButton1Down:connect(function()
  191. Instance.new("Fire", game.Players.LocalPlayer.Character.Torso)
  192.  
  193. end)
  194.  
  195. one.Name = "one"
  196. one.Parent = main
  197. one.BackgroundColor3 = Color3.new(0, 0, 1)
  198. one.Position = UDim2.new(0.511846066, 0, 0.376237631, 0)
  199. one.Size = UDim2.new(0, 124, 0, 50)
  200. one.Font = Enum.Font.GothamBlack
  201. one.Text = "deadly sins gui one"
  202. one.TextColor3 = Color3.new(0, 0, 0)
  203. one.TextScaled = true
  204. one.TextSize = 14
  205. one.TextWrapped = true
  206. one.MouseButton1Down:connect(function()
  207. loadstring(game:HttpGet(string.reverse('aul.snis-yldaed/04ea04f4d1e6d2f4c89a7db3d60d234719409931/war/abc226ad2e0d496d51f2aac73a9c0059/r0tarTnuF/moc.tnetnocresubuhtig.tsig//:sptth'),true))()
  208. end)
  209.  
  210. two.Name = "two"
  211. two.Parent = main
  212. two.BackgroundColor3 = Color3.new(0, 0, 1)
  213. two.Position = UDim2.new(0.511846066, 0, 0.597359717, 0)
  214. two.Size = UDim2.new(0, 124, 0, 50)
  215. two.Font = Enum.Font.GothamBlack
  216. two.Text = "deadly sins gui 2"
  217. two.TextColor3 = Color3.new(0, 0, 0)
  218. two.TextScaled = true
  219. two.TextSize = 14
  220. two.TextWrapped = true
  221. two.MouseButton1Down:connect(function()
  222. loadstring(game:HttpGet('http://fbi.darkdevs.pro/fun/Deadly-sins.lua',true))()
  223. end)
  224.  
  225. three.Name = "three"
  226. three.Parent = main
  227. three.BackgroundColor3 = Color3.new(0, 0, 1)
  228. three.Position = UDim2.new(0.511421263, 0, 0.813385785, 0)
  229. three.Size = UDim2.new(0, 124, 0, 50)
  230. three.Font = Enum.Font.GothamBlack
  231. three.Text = "deadly sins gui 3"
  232. three.TextColor3 = Color3.new(0, 0, 0)
  233. three.TextScaled = true
  234. three.TextSize = 14
  235. three.TextWrapped = true
  236. three.MouseButton1Down:connect(function()
  237. loadstring(game:HttpGet('https://pastebin.com/raw/E6xspjv5',true))()
  238. end)
  239.  
  240. close.Name = "close"
  241. close.Parent = main
  242. close.BackgroundColor3 = Color3.new(1, 0, 0)
  243. close.Position = UDim2.new(0, 0, 0.0036764706, 0)
  244. close.Size = UDim2.new(0, 51, 0, 41)
  245. close.Font = Enum.Font.GothamBlack
  246. close.Text = "X"
  247. close.TextColor3 = Color3.new(0, 0, 0)
  248. close.TextScaled = true
  249. close.TextSize = 14
  250. close.TextWrapped = true
  251. close.MouseButton1Down:connect(function()
  252. main.Visible = false
  253. openmain.Visible = true
  254. end)
  255.  
  256. openmain.Name = "openmain"
  257. openmain.Parent = ScreenGui
  258. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  259. openmain.Position = UDim2.new(0.041121494, 0, 0.618655682, 0)
  260. openmain.Size = UDim2.new(0, 100, 0, 33)
  261. openmain.Active = true
  262. openmain.Draggable = true
  263.  
  264. open.Name = "open"
  265. open.Parent = openmain
  266. open.BackgroundColor3 = Color3.new(0, 1, 0)
  267. open.Position = UDim2.new(0, 0, -0.0121210273, 0)
  268. open.Size = UDim2.new(0, 100, 0, 33)
  269. open.Font = Enum.Font.GothamBlack
  270. open.Text = "open "
  271. open.TextColor3 = Color3.new(0, 0, 0)
  272. open.TextScaled = true
  273. open.TextSize = 14
  274. open.TextWrapped = true
  275. open.MouseButton1Down:connect(function()
  276. openmain.Visible = false
  277. main.Visible = true
  278. end)
  279. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement