Advertisement
Guest User

Fencing gui

a guest
Feb 22nd, 2019
12,324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.13 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local OpenFrame = Instance.new("Frame")
  6. local Open = Instance.new("TextButton")
  7. local Main = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local RealsimAnime = Instance.new("TextButton")
  10. local Brick = Instance.new("TextButton")
  11. local Reach = Instance.new("TextButton")
  12. local Invisible = Instance.new("TextButton")
  13. local Close = Instance.new("TextButton")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15. --Properties:
  16. ScreenGui.Name = "ScreenGui"
  17. ScreenGui.Parent = game.CoreGui
  18.  
  19. OpenFrame.Name = "OpenFrame"
  20. OpenFrame.Parent = ScreenGui
  21. OpenFrame.BackgroundColor3 = Color3.new(0.513726, 0.560784, 1)
  22. OpenFrame.Position = UDim2.new(0.936265111, 0, 0.837837815, 0)
  23. OpenFrame.Size = UDim2.new(0, 100, 0, 45)
  24.  
  25. Open.Name = "Open"
  26. Open.Parent = OpenFrame
  27. Open.BackgroundColor3 = Color3.new(0, 0.0666667, 1)
  28. Open.Position = UDim2.new(-0.0299999714, 0, -0.111111112, 0)
  29. Open.Size = UDim2.new(0, 103, 0, 50)
  30. Open.Font = Enum.Font.Cartoon
  31. Open.Text = "X"
  32. Open.TextColor3 = Color3.new(0, 0, 0)
  33. Open.TextSize = 50
  34. Open.MouseButton1Down:connect(function()
  35. Main.Visible = true
  36. OpenFrame.Visible = false
  37. end)
  38.  
  39. Main.Name = "Main"
  40. Main.Parent = ScreenGui
  41. Main.Active = true
  42. Main.BackgroundColor3 = Color3.new(0.364706, 0.352941, 0.352941)
  43. Main.Position = UDim2.new(0.23008287, 0, 0.226044238, 0)
  44. Main.Size = UDim2.new(0, 648, 0, 366)
  45. Main.Visible = false
  46. Main.Draggable = true
  47.  
  48. TextLabel.Parent = Main
  49. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  50. TextLabel.Size = UDim2.new(0, 648, 0, 50)
  51. TextLabel.Font = Enum.Font.Cartoon
  52. TextLabel.Text = "FENCING FUCKER V1"
  53. TextLabel.TextColor3 = Color3.new(0.807843, 0.266667, 0.807843)
  54. TextLabel.TextSize = 30
  55. TextLabel.TextStrokeTransparency = 0
  56.  
  57. RealsimAnime.Name = "Realsim Anime"
  58. RealsimAnime.Parent = Main
  59. RealsimAnime.BackgroundColor3 = Color3.new(0.137255, 0.509804, 1)
  60. RealsimAnime.Position = UDim2.new(0.356481493, 0, 0.172131151, 0)
  61. RealsimAnime.Size = UDim2.new(0, 200, 0, 50)
  62. RealsimAnime.Font = Enum.Font.Cartoon
  63. RealsimAnime.Text = "Realsim Anim"
  64. RealsimAnime.TextColor3 = Color3.new(0, 0, 0)
  65. RealsimAnime.TextSize = 30
  66. RealsimAnime.MouseButton1Down:connect(function()
  67. --<//Realism Script by xAcrozed.\\>--
  68. --/>>/>>/>>/>>/>>/>>/>>/>>/>>/--
  69. --------------------------------
  70.  
  71. --//Variables\\--
  72. local lp = game.Players.LocalPlayer
  73. local animate = lp.Character.Animate
  74.  
  75. --//Scripting\\--
  76. animate.walk.WalkAnim.AnimationId = "rbxassetid://376760331"
  77. animate.idle.Animation1.AnimationId = "rbxassetid://75356212"
  78. animate.idle.Animation1.Looped = true
  79. lp.character.Humanoid.WalkSpeed = 25
  80. end)
  81.  
  82. Brick.Name = "Brick"
  83. Brick.Parent = Main
  84. Brick.BackgroundColor3 = Color3.new(0.137255, 0.509804, 1)
  85. Brick.Position = UDim2.new(0.0370370373, 0, 0.431694001, 0)
  86. Brick.Size = UDim2.new(0, 200, 0, 50)
  87. Brick.Font = Enum.Font.Cartoon
  88. Brick.Text = "Brick Spam "
  89. Brick.TextColor3 = Color3.new(0, 0, 0)
  90. Brick.TextSize = 30
  91. Brick.MouseButton1Down:connect(function()
  92. -- https://www.roblox.com/games/12109643/Fencing
  93.  
  94. game:GetService('RunService').Stepped:connect(function()
  95. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  96. if v.Name == "Spray" then
  97. if v.Handle.Mesh then
  98. v.Handle.Mesh:Destroy()
  99. end
  100. v.Parent = workspace
  101. end
  102. end
  103. end)
  104. local function paint()
  105. for i,v in pairs(game.Workspace:GetChildren())do
  106. if v.Name == "Handle" then
  107. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  108. v.Transparency = 1
  109. v.CanCollide = false
  110. wait()
  111. v.CFrame = game.Players.LocalPlayer.Character["Left Leg"].CFrame
  112. end
  113. end
  114. end
  115. local function equip()
  116. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren())do
  117. if v.Name == "Spray" then
  118. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  119. end
  120. end
  121. end
  122. while wait(0.05) do
  123. paint()
  124. equip()
  125. end
  126. end)
  127.  
  128. Reach.Name = "Reach"
  129. Reach.Parent = Main
  130. Reach.BackgroundColor3 = Color3.new(0.137255, 0.509804, 1)
  131. Reach.Position = UDim2.new(0.345679015, 0, 0.677595675, 0)
  132. Reach.Size = UDim2.new(0, 200, 0, 50)
  133. Reach.Font = Enum.Font.Cartoon
  134. Reach.Text = "REACH"
  135. Reach.TextColor3 = Color3.new(0, 0, 0)
  136. Reach.TextSize = 40
  137. Reach.MouseButton1Down:connect(function()
  138. local foil=game.Players.LocalPlayer.Backpack.Foil
  139. a=Instance.new("SelectionBox",foil.Handle)
  140. a.Adornee=foil.Handle
  141. foil.Handle.Size=Vector3.new(0.2,0.2,120)
  142. foil.Equipped:connect(function()
  143. while wait() do
  144. game.Workspace[game.Players.LocalPlayer.Name].Foil.GripPos=Vector3.new(0,0,-60)
  145. end
  146. end)
  147. end)
  148.  
  149. Invisible.Name = "Invisible"
  150. Invisible.Parent = Main
  151. Invisible.BackgroundColor3 = Color3.new(0.137255, 0.509804, 1)
  152. Invisible.Position = UDim2.new(0.654321015, 0, 0.431694001, 0)
  153. Invisible.Size = UDim2.new(0, 200, 0, 50)
  154. Invisible.Font = Enum.Font.Cartoon
  155. Invisible.Text = "Invisible"
  156. Invisible.TextColor3 = Color3.new(0, 0, 0)
  157. Invisible.TextSize = 30
  158. Invisible.MouseButton1Down:connect(function()
  159. Local = game:GetService('Players').LocalPlayer
  160. Char = Local.Character
  161. touched,tpdback = false, false
  162. Local.CharacterAdded:connect(function(char)
  163. if script.Disabled ~= true then
  164. wait(.25)
  165. loc = Char.HumanoidRootPart.Position
  166. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  167. end
  168. end)
  169. game:GetService('UserInputService').InputBegan:connect(function(key)
  170. if key.KeyCode == Enum.KeyCode.Equals then
  171. if script.Disabled ~= true then
  172. script.Disabled = true
  173. print'you may re-execute'
  174. end
  175. end
  176. end)
  177. box = Instance.new('Part',workspace)
  178. box.Anchored = true
  179. box.CanCollide = true
  180. box.Size = Vector3.new(10,1,10)
  181. box.Position = Vector3.new(0,10000,0)
  182. box.Touched:connect(function(part)
  183. if (part.Parent.Name == Local.Name) then
  184. if touched == false then
  185. touched = true
  186. function apply()
  187. if script.Disabled ~= true then
  188. no = Char.HumanoidRootPart:Clone()
  189. wait(.25)
  190. Char.HumanoidRootPart:Destroy()
  191. no.Parent = Char
  192. Char:MoveTo(loc)
  193. touched = false
  194. end end
  195. if Char then
  196. apply()
  197. end
  198. end
  199. end
  200. end)
  201. repeat wait() until Char
  202. loc = Char.HumanoidRootPart.Position
  203. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  204. end)
  205.  
  206. Close.Name = "Close"
  207. Close.Parent = Main
  208. Close.BackgroundColor3 = Color3.new(0.137255, 0.509804, 1)
  209. Close.Position = UDim2.new(0.442901224, 0, 0.431694001, 0)
  210. Close.Size = UDim2.new(0, 73, 0, 50)
  211. Close.Font = Enum.Font.Cartoon
  212. Close.Text = "CLOSE"
  213. Close.TextColor3 = Color3.new(0, 0, 0)
  214. Close.TextSize = 20
  215. Close.MouseButton1Down:connect(function()
  216. OpenFrame.Visible = true
  217. Main.Visible = false
  218. end)
  219.  
  220. TextLabel_2.Parent = Main
  221. TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
  222. TextLabel_2.Position = UDim2.new(0, 0, 0.863388002, 0)
  223. TextLabel_2.Size = UDim2.new(0, 648, 0, 50)
  224. TextLabel_2.Font = Enum.Font.SourceSans
  225. TextLabel_2.Text = "GUI BY LUDDE2K ON V3RM"
  226. TextLabel_2.TextColor3 = Color3.new(1, 0, 1)
  227. TextLabel_2.TextSize = 30
  228. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement