Advertisement
erfecdwxsthgevfcd

Untitled

Jan 20th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.1
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local TextBox = Instance.new("TextBox")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Name = "."
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. TextBox.Parent = ScreenGui
  15. TextBox.BackgroundColor3 = Color3.fromRGB(255, 51, 0)
  16. TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0)
  17. TextBox.Size = UDim2.new(0, 66, 0, 66)
  18. TextBox.Text = "Kill all"
  19. TextBox.TextColor3 = Color3.fromRGB(0, 0, 255)
  20.  
  21. -- Scripts:
  22.  
  23. local function LFUFF_fake_script() -- TextBox.Script
  24. local script = Instance.new('Script', TextBox)
  25.  
  26. function chuck()
  27. c = game.Players:GetChildren()
  28. c.Health = 0
  29. end
  30.  
  31. script.Parent.Mouse1Click:connect(chuck)
  32. end
  33. coroutine.wrap(LFUFF_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement