Pastebinisawesome0

Untitled

Feb 16th, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local ui = Instance.new("Frame")
  3. local title = Instance.new("TextLabel")
  4. local Reset = Instance.new("TextButton")
  5.  
  6. ScreenGui.Parent = game:GetService("CoreGui")
  7. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8.  
  9. ui.Name = "ui"
  10. ui.Parent = ScreenGui
  11. ui.Active = true
  12. ui.BackgroundColor3 = Color3.fromRGB(24, 35, 58) -- Warna biru tua
  13. ui.BackgroundTransparency = 0
  14. ui.BorderSizePixel = 3
  15. ui.Position = UDim2.new(0.254972845, 0, 0.419703096, 0)
  16. ui.Size = UDim2.new(0, 278, 0, 278)
  17.  
  18. title.Name = "title"
  19. title.Parent = ui
  20. title.BackgroundColor3 = Color3.new(68, 68, 68)
  21. title.BackgroundTransparency = 1
  22. title.BorderSizePixel = 2
  23. title.Position = UDim2.new(0, 0, 0.0199999996, 0)
  24. title.Size = UDim2.new(1, 0, 0, 50)
  25. title.Font = Enum.Font.SourceSans
  26. title.Text = "troll kick all •Made by Video Games and Music"
  27. title.TextColor3 = Color3.new(1, 1, 1)
  28. title.TextScaled = true
  29. title.TextSize = 14
  30. title.TextWrapped = true
  31.  
  32. Reset.Name = "Reset"
  33. Reset.Parent = ui
  34. Reset.BackgroundColor3 = Color3.new(0.25, 0.25, 0.25)
  35. Reset.BackgroundTransparency = 0
  36. Reset.BorderSizePixel = 2
  37. Reset.Position = UDim2.new(0.25, 0, 0.629999971, 0)
  38. Reset.Size = UDim2.new(0.5, 0, 0, 45)
  39. Reset.Font = Enum.Font.Gotham
  40. Reset.Text = "kick all"
  41. Reset.TextColor3 = Color3.new(0, 0, 0)
  42. Reset.TextScaled = true
  43. Reset.TextSize = 10
  44. Reset.TextWrapped = true
  45. ui.Draggable = true
  46.  
  47. Reset.MouseButton1Click:Connect(function()
  48. game.Players.LocalPlayer:Kick("Your Account Has Been Hacked. Contact Roblox Support.")
  49. end)
Advertisement
Add Comment
Please, Sign In to add comment