Advertisement
Brando_Roblox9

Untitled

Mar 16th, 2022
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Subscribe To xMiles_Games";
  3. Text = "Subscribe For More Scripts"; -- what the text says (ofc)
  4. Duration = 60;
  5. })
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local main = Instance.new("Frame")
  9. local label = Instance.new("TextLabel")
  10. local Hitbox =
  11. Instance.new("TextButton")
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  18. main.Position = UDim2.new(0.40427351, 0, 0.34591195, 0)
  19. main.Size = UDim2.new(0, 100, 0, 100)
  20. main.Active = true
  21. main.Draggable = true
  22.  
  23. label.Name = "label"
  24. label.Parent = main
  25. label.BackgroundColor3 = Color3.fromRGB(139,0,0)
  26. label.Size = UDim2.new(0, 100, 0, 20)
  27. label.Font = Enum.Font.SourceSans
  28. label.Text = "Teen Titan GUI"
  29. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. label.TextScaled = true
  31. label.TextSize = 5.000
  32. label.TextWrapped = true
  33.  
  34. Hitbox.Name = "Hit box"
  35. Hitbox.Parent = main
  36. Hitbox.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  37. Hitbox.Position = UDim2.new(0.114285722, 0, 0.372448981, 0)
  38. Hitbox.Size = UDim2.new(0, 90, 0, 40)
  39. Hitbox.Font = Enum.Font.SourceSans
  40. Hitbox.Text = "Hit box"
  41. Hitbox.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. Hitbox.TextSize = 40.000
  43. Hitbox.MouseButton1Down:connect(function()
  44. _G.HeadSize = 200
  45.  
  46. _G.Disabled = true
  47.  
  48.  
  49. game:GetService('RunService').RenderStepped:connect(function()
  50. if _G.Disabled then
  51. for i,v in next, game:GetService('Players'):GetPlayers() do
  52. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  53. pcall(function()
  54. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  55. v.Character.HumanoidRootPart.Transparency = 0.7
  56. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  57. v.Character.HumanoidRootPart.Material = "Neon"
  58. v.Character.HumanoidRootPart.CanCollide = false
  59. end)
  60. end
  61. end
  62. end
  63. end)
  64. end)
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement