Advertisement
freerobloxscript

roblowling 100% strike

Nov 2nd, 2020
1,813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local LocalPlayer = Players.LocalPlayer
  3.  
  4. local Mouse = LocalPlayer:GetMouse()
  5. local Character = LocalPlayer.Character
  6. local HRP = Character.HumanoidRootPart
  7.  
  8. function GetLanes()
  9. for i,v in pairs(game.Workspace.FunctionalAssets.BowlingLanes.Lanes:GetChildren()) do
  10. for a,b in pairs(v.Scoring.Screen2.BowlingLaneBoard.BoardGui.ImageLabel:GetChildren()) do
  11. if b.Name == game.Players.LocalPlayer.Name then
  12. return b.Parent.Parent.Parent.Parent.Parent.Parent
  13. end
  14. end
  15. end
  16. end
  17.  
  18. Mouse.KeyDown:Connect(function(Key)
  19. Key = Key:lower()
  20. if Key == "q" then
  21. for i,v in pairs(GetLanes().FunctioningAssets.Pins:GetChildren()) do
  22. v.Rotation = Vector3.new(90,0,0)
  23. end
  24. end
  25. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement