Advertisement
Guest User

go die

a guest
Jan 28th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. --Whitelist
  2.  
  3.  
  4. game:GetService("StarterGui"):SetCore("SendNotification", {
  5. Title = "GameCommon V1.1",
  6. Text = "Script Has Been Loaded!"
  7. })
  8.  
  9. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  10. local example = library:CreateWindow({
  11. text = "GameCommon V1.1"
  12. })
  13.  
  14. local credits = library:CreateWindow({text='Credits'})
  15. credits:AddLabel("Credits\nSircow#4291: Coding\nelephantshow#1063: The idea\nEDGE ZWOLF MOON: Admin\nWally: Code/UI\n")
  16.  
  17. example:AddBox("WalkSpeed", function(object, focus)
  18. if focus then
  19. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(object.Text) or 16
  20. end
  21. end)
  22.  
  23.  
  24. example:AddButton("commit die", function()
  25. game:GetService("Players").LocalPlayer.Character.Humanoid.Health = 0;
  26. end)
  27.  
  28. example:AddToggle("Big Jump", function(state)
  29. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = (state and 1000 or 50)
  30. end)
  31.  
  32. example:AddButton("Admin IY", function()
  33. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  34. end)
  35.  
  36. example:AddToggle("DestroyGui", function()
  37. --help your self add it when found one and message ME!
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement