Advertisement
404Coder

troll gui v1

Aug 25th, 2023
1,050
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.99 KB | None | 0 0
  1. -- Instances:
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local NoHead = Instance.new("TextButton")
  6. local Jumpscare = Instance.new("TextButton")
  7. local Chainsaw = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  16. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  17. Frame.BorderSizePixel = 0
  18. Frame.Position = UDim2.new(0.276995301, 0, 0.0456989259, 0)
  19. Frame.Size = UDim2.new(0, 335, 0, 326)
  20.  
  21. TextLabel.Parent = Frame
  22. TextLabel.BackgroundColor3 = Color3.fromRGB(105, 255, 255)
  23. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  24. TextLabel.BorderSizePixel = 0
  25. TextLabel.Size = UDim2.new(0, 335, 0, 50)
  26. TextLabel.Font = Enum.Font.SourceSans
  27. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. TextLabel.TextSize = 14.000
  29.  
  30. NoHead.Parent = Frame
  31. NoHead.BackgroundColor3 = Color3.fromRGB(128, 255, 108)
  32. NoHead.BorderColor3 = Color3.fromRGB(0, 0, 0)
  33. NoHead.BorderSizePixel = 0
  34. NoHead.Position = UDim2.new(0.200000003, 0, 0.241593257, 0)
  35. NoHead.Size = UDim2.new(0, 200, 0, 63)
  36. NoHead.Font = Enum.Font.SourceSans
  37. NoHead.Text = "No Head"
  38. NoHead.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. NoHead.TextScaled = true
  40. NoHead.TextSize = 14.000
  41. NoHead.TextWrapped = true
  42.  
  43. Jumpscare.Parent = Frame
  44. Jumpscare.BackgroundColor3 = Color3.fromRGB(128, 255, 108)
  45. Jumpscare.BorderColor3 = Color3.fromRGB(0, 0, 0)
  46. Jumpscare.BorderSizePixel = 0
  47. Jumpscare.Position = UDim2.new(0.200000003, 0, 0.497416824, 0)
  48. Jumpscare.Size = UDim2.new(0, 200, 0, 63)
  49. Jumpscare.Font = Enum.Font.SourceSans
  50. Jumpscare.Text = "Jumpscare player"
  51. Jumpscare.TextColor3 = Color3.fromRGB(0, 0, 0)
  52. Jumpscare.TextScaled = true
  53. Jumpscare.TextSize = 14.000
  54. Jumpscare.TextWrapped = true
  55.  
  56. Chainsaw.Parent = Frame
  57. Chainsaw.BackgroundColor3 = Color3.fromRGB(128, 255, 108)
  58. Chainsaw.BorderColor3 = Color3.fromRGB(0, 0, 0)
  59. Chainsaw.BorderSizePixel = 0
  60. Chainsaw.Position = UDim2.new(0.200000003, 0, 0.763073146, 0)
  61. Chainsaw.Size = UDim2.new(0, 200, 0, 63)
  62. Chainsaw.Font = Enum.Font.SourceSans
  63. Chainsaw.Text = "Chainsaw Giver"
  64. Chainsaw.TextColor3 = Color3.fromRGB(0, 0, 0)
  65. Chainsaw.TextScaled = true
  66. Chainsaw.TextSize = 14.000
  67. Chainsaw.TextWrapped = true
  68.  
  69. --scripts
  70.  
  71. script.Parent.MouseButton1Click:Connect(function()
  72.   game.Player.Clicked = game.Humanoid.Part.Head.Size * / 0
  73.  
  74. print("players head turned small!!")
  75. end)
  76.  
  77. --jumpscare script
  78.  
  79. script.Parent.MouseButton1Click:Connect(function()
  80. game.Workspace.audio = audio.Sound(function(audio)
  81. audio.Id = "id here of any jumpscare"
  82. audio.Volume = 8
  83. audio.Playing = true
  84. audio.Looped = false
  85. audio.PlayOnRemove = true
  86. end)
  87. end)
  88.  
  89. script.Parent.MouseButton1Click:Connect(function()
  90. local Chainsaw = game.Model(function(model)
  91. local chainsaw = model
  92. game.Chainsaw = Handle.Id
  93. Chainsaw.Id = "add chainsaw id from model id"
  94. end)
  95. end)
  96.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement