Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. --By Rufus14
  2. mouse = game.Players.LocalPlayer:GetMouse()
  3. for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
  4. if v.Name == "StartAxe" or v.Name == "AttackAxe" then
  5. v:destroy()
  6. end
  7. end
  8. local RunTheServersided = Instance.new("ScreenGui")
  9. local Frame = Instance.new("Frame")
  10. local TextLabel = Instance.new("TextLabel")
  11. --Properties:
  12. RunTheServersided.Name = "RunTheServersided"
  13. RunTheServersided.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14.  
  15. Frame.Parent = RunTheServersided
  16. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  17. Frame.BackgroundTransparency = 0.64999997615814
  18. Frame.Size = UDim2.new(1, 0, 1, 0)
  19.  
  20. TextLabel.Parent = Frame
  21. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  22. TextLabel.BackgroundTransparency = 1
  23. TextLabel.Position = UDim2.new(0.427, 0, 0.427, 0)
  24. TextLabel.Size = UDim2.new(0, 464, 0, 117)
  25. TextLabel.Font = Enum.Font.SourceSans
  26. TextLabel.Text = "Run the serversided script now."
  27. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  28. TextLabel.TextSize = 39
  29. local start = game.ReplicatedStorage:WaitForChild("StartAxe")
  30. local attack = game.ReplicatedStorage:WaitForChild("AttackAxe")
  31. RunTheServersided:Destroy()
  32. start:FireServer(game.Players.LocalPlayer)
  33. function swing()
  34. attack:FireServer(game.Players.LocalPlayer)
  35. end
  36. mouse.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement