Advertisement
RyanDaCoder

God Of Fire - Ryanawesome222

Jul 19th, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. local fire = Instance.new("Fire")
  2. fire.Size = "10"
  3. fire.Name = "FireOne"
  4. fire.Parent = game.Players.LocalPlayer.Character['Left Arm']
  5.  
  6. local fire2 = Instance.new("Fire")
  7. fire2.Size = "10"
  8. fire2.Name = "FireTwo"
  9. fire2.Parent = game.Players.LocalPlayer.Character['Right Arm']
  10.  
  11. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
  12.  
  13. -- Objects
  14.  
  15. local ScreenGui = Instance.new("ScreenGui")
  16. local SizePlus = Instance.new("TextButton")
  17. local SizeLess = Instance.new("TextButton")
  18. local Name = Instance.new("TextLabel")
  19.  
  20. -- Properties
  21.  
  22. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  23.  
  24. SizePlus.Name = "SizePlus"
  25. SizePlus.Parent = ScreenGui
  26. SizePlus.BackgroundColor3 = Color3.new(1, 1, 1)
  27. SizePlus.Position = UDim2.new(0, 59, 0, 91)
  28. SizePlus.Size = UDim2.new(0, 200, 0, 28)
  29. SizePlus.Font = Enum.Font.SourceSans
  30. SizePlus.FontSize = Enum.FontSize.Size14
  31. SizePlus.Text = "+1 Size"
  32. SizePlus.TextSize = 14
  33.  
  34. SizeLess.Name = "SizeLess"
  35. SizeLess.Parent = SizePlus
  36. SizeLess.BackgroundColor3 = Color3.new(1, 1, 1)
  37. SizeLess.Position = UDim2.new(0, 0, 0, 28)
  38. SizeLess.Size = UDim2.new(0, 200, 0, 28)
  39. SizeLess.Font = Enum.Font.SourceSans
  40. SizeLess.FontSize = Enum.FontSize.Size14
  41. SizeLess.Text = "-1 Size"
  42. SizeLess.TextSize = 14
  43.  
  44. Name.Name = "Name"
  45. Name.Parent = SizePlus
  46. Name.Active = true
  47. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  48. Name.Draggable = true
  49. Name.Position = UDim2.new(0, 0, 0, -20)
  50. Name.Size = UDim2.new(0, 200, 0, 20)
  51. Name.Font = Enum.Font.SourceSans
  52. Name.FontSize = Enum.FontSize.Size14
  53. Name.Text = "Fire Control"
  54. Name.TextSize = 14
  55.  
  56. SizePlus.MouseButton1Click:connect(function()
  57. game.Players.LocalPlayer.Character['Left Arm'].FireOne.Size = game.Players.LocalPlayer.Character['Left Arm'].Fire.Size + 1
  58. end)
  59.  
  60. SizeLess.MouseButton1Click:connect(function()
  61. game.Players.LocalPlayer.Character['Left Arm'].FireOne.Size = game.Players.LocalPlayer.Character['Left Arm'].Fire.Size - 1
  62. end)
  63.  
  64. function onHit(hit)
  65. hit:Destroy()
  66. end
  67.  
  68. game.Players.LocalPlayer.Character.Torso.Touched:connect(onHit)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement