Advertisement
Jjgames

HCBB 9v9 SCRIPT RELEASE

May 26th, 2019
9,298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local repStorage = game:WaitForChild("ReplicatedStorage") local ball = repStorage.Ball local mesh = ball.Mesh mouse = game.Players.LocalPlayer:GetMouse() toggle = false mouse.KeyDown:Connect(function(key) if key == "z" then if toggle == false then toggle = true while toggle == true do wait() ball.Size = Vector3.new(100, 100, 100) mesh.Scale = Vector3.new(100, 100, 100) end else toggle = false ball.Size = Vector3.new(1,1,1) mesh.Scale = Vector3.new(1,1,1) end end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement