Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local TFCScriptinghub = Instance.new("Frame")
- local AimbotAndEsp = Instance.new("TextButton")
- local title = Instance.new("TextBox")
- local NoClip = Instance.new("TextButton")
- local UniversalEsp = Instance.new("TextButton")
- local InfiniteJump = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- TFCScriptinghub.Name = "TFC Scripting hub"
- TFCScriptinghub.Parent = ScreenGui
- TFCScriptinghub.BackgroundColor3 = Color3.fromRGB(0, 85, 255)
- TFCScriptinghub.Position = UDim2.new(0.0797158703, 0, 0.678132653, 0)
- TFCScriptinghub.Size = UDim2.new(0, 378, 0, 240)
- TFCScriptinghub.Active = true
- TFCScriptinghub.Draggable = true
- TFCScriptinghub.Visible = true
- AimbotAndEsp.Name = "Aimbot And Esp"
- AimbotAndEsp.Parent = ScreenGui
- AimbotAndEsp.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
- AimbotAndEsp.Position = UDim2.new(0.0797158405, 0, 0.744471729, 0)
- AimbotAndEsp.Size = UDim2.new(0, 186, 0, 50)
- AimbotAndEsp.Font = Enum.Font.GothamBold
- AimbotAndEsp.Text = "Aimlock And ESP"
- AimbotAndEsp.TextColor3 = Color3.fromRGB(0, 0, 0)
- AimbotAndEsp.TextSize = 14.000
- AimbotAndEsp.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/RPsLaHQh"))()
- end)
- title.Name = "title"
- title.Parent = ScreenGui
- title.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- title.Position = UDim2.new(0.0797158629, 0, 0.678132653, 0)
- title.Size = UDim2.new(0, 378, 0, 54)
- title.Font = Enum.Font.GothamBold
- title.Text = "TFC Scripting Hub V1"
- title.TextColor3 = Color3.fromRGB(0, 0, 0)
- title.TextSize = 16.000
- NoClip.Name = "No Clip (e)"
- NoClip.Parent = ScreenGui
- NoClip.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
- NoClip.Position = UDim2.new(0.226519316, 0, 0.744471729, 0)
- NoClip.Size = UDim2.new(0, 192, 0, 50)
- NoClip.Font = Enum.Font.GothamBold
- NoClip.Text = "No Clip"
- NoClip.TextColor3 = Color3.fromRGB(0, 0, 0)
- NoClip.TextSize = 14.000
- NoClip.MouseButton1Down:connect(function()
- noclip = false
- game:GetService('RunService').Stepped:connect(function()
- if noclip then
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- plr = game.Players.LocalPlayer
- mouse = plr:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "e" then
- noclip = not noclip
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- end)
- UniversalEsp.Name = "Universal Esp"
- UniversalEsp.Parent = ScreenGui
- UniversalEsp.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
- UniversalEsp.Position = UDim2.new(0.0797158629, 0, 0.805896819, 0)
- UniversalEsp.Size = UDim2.new(0, 185, 0, 50)
- UniversalEsp.Font = Enum.Font.GothamBold
- UniversalEsp.Text = "Universal Esp"
- UniversalEsp.TextColor3 = Color3.fromRGB(0, 0, 0)
- UniversalEsp.TextSize = 14.000
- UniversalEsp.MouseButton1Down:connect(function()
- local localPlayer=game.Players.LocalPlayer
- function highlightModel(objObject)
- for i,v in pairs(objObject:children())do
- if v:IsA'BasePart'and v.Name~='HumanoidRootPart'then
- local bHA=Instance.new('BoxHandleAdornment',v)
- bHA.Adornee=v
- bHA.Size= v.Name=='Head' and Vector3.new(1.25,1.25,1.25) or v.Size
- bHA.Color3=v.Name=='Head'and Color3.new(1,0,0)or v.Name=='Torso'and Color3.new(0,1,0)or Color3.new(0,0,1)
- bHA.Transparency=.5
- bHA.ZIndex=1
- bHA.AlwaysOnTop=true
- end
- if #v:children()>0 then
- highlightModel(v)
- end
- end
- end
- function unHighlightModel(objObject)
- for i,v in pairs(objObject:children())do
- if v:IsA'BasePart' and v:findFirstChild'BoxHandleAdornment' then
- v.BoxHandleAdornment:Destroy()
- end
- if #v:children()>0 then
- unHighlightModel(v)
- end
- end
- end
- function sortTeamHighlights(objPlayer)
- repeat wait() until objPlayer.Character
- if objPlayer.TeamColor~=localPlayer.TeamColor then
- highlightModel(objPlayer.Character)
- else
- unHighlightModel(objPlayer.Character)
- end
- if objPlayer~=localPlayer then
- objPlayer.Changed:connect(function(strProp)
- if strProp=='TeamColor'then
- if objPlayer.TeamColor~=localPlayer.TeamColor then
- unHighlightModel(objPlayer.Character)
- highlightModel(objPlayer.Character)
- else
- unHighlightModel(objPlayer.Character)
- end
- end
- end)
- else
- objPlayer.Changed:connect(function(strProp)
- if strProp=='TeamColor'then
- wait(.5)
- for i,v in pairs(game.Players:GetPlayers())do
- unHighlightModel(v)
- if v.TeamColor~=localPlayer.TeamColor then
- highlightModel(v.Character)
- end
- end
- end
- end)
- end
- end
- for i,v in pairs(game.Players:GetPlayers())do
- v.CharacterAdded:connect(function()
- sortTeamHighlights(v)
- end)
- sortTeamHighlights(v)
- end
- game.Players.PlayerAdded:connect(function(objPlayer)
- objPlayer.CharacterAdded:connect(function(objChar)
- sortTeamHighlights(objPlayer)
- end)
- end)
- end)
- InfiniteJump.Name = "Infinite Jump"
- InfiniteJump.Parent = ScreenGui
- InfiniteJump.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
- InfiniteJump.Position = UDim2.new(0.225730076, 0, 0.805896819, 0)
- InfiniteJump.Size = UDim2.new(0, 192, 0, 50)
- InfiniteJump.Font = Enum.Font.GothamBlack
- InfiniteJump.Text = "Infinite Jump"
- InfiniteJump.TextColor3 = Color3.fromRGB(0, 0, 0)
- InfiniteJump.TextSize = 14.000
- InfiniteJump.MouseButton1Down:connect(function()
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local Frame = Instance.new("Frame")
- local INFJUMP = Instance.new("TextButton")
- local TextLabel_2 = Instance.new("TextLabel")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- main.Name = "main"
- main.Parent = ScreenGui
- main.Active = true
- main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- main.BorderSizePixel = 0
- main.Position = UDim2.new(0.119258665, 0, 0, 0)
- main.Size = UDim2.new(0, 146, 0, 28)
- main.Active = true
- main.Draggable = false
- TextLabel.Parent = main
- TextLabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
- TextLabel.BorderSizePixel = 0
- TextLabel.Size = UDim2.new(0, 146, 0, 28)
- TextLabel.Font = Enum.Font.SciFi
- TextLabel.Text = "Misc"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextSize = 17.000
- TextLabel.TextWrapped = true
- Frame.Parent = main
- Frame.BackgroundColor3 = Color3.fromRGB(86, 86, 86)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0, 0, 1, 0)
- Frame.Size = UDim2.new(0, 146, 0, 61)
- INFJUMP.Name = "INFJUMP"
- INFJUMP.Parent = main
- INFJUMP.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- INFJUMP.BorderSizePixel = 0
- INFJUMP.Position = UDim2.new(0.794520497, 0, 1.6785717, 0)
- INFJUMP.Size = UDim2.new(0, 21, 0, 21)
- INFJUMP.Font = Enum.Font.SourceSans
- INFJUMP.Text = ""
- INFJUMP.TextColor3 = Color3.fromRGB(0, 0, 0)
- INFJUMP.TextSize = 14.000
- INFJUMP.MouseButton1Down:connect(function()
- local Player = game:GetService'Players'.LocalPlayer;
- local UIS = game:GetService'UserInputService';
- _G.JumpHeight = 50;
- function Action(Object, Function) if Object ~= nil then Function(Object); end end
- UIS.InputBegan:connect(function(UserInput)
- if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
- Action(Player.Character.Humanoid, function(self)
- if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
- Action(self.Parent.HumanoidRootPart, function(self)
- self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
- end)
- end
- end)
- end
- end)
- end)
- TextLabel_2.Parent = main
- TextLabel_2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
- TextLabel_2.BorderSizePixel = 0
- TextLabel_2.Position = UDim2.new(0.0547945201, 0, 1.57142854, 0)
- TextLabel_2.Size = UDim2.new(0, 94, 0, 28)
- TextLabel_2.Font = Enum.Font.SciFi
- TextLabel_2.Text = "Inf jump"
- TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel_2.TextSize = 17.000
- TextLabel_2.TextWrapped = true
- -- Scripts:
- local function TKDWQ_fake_script() -- INFJUMP.LocalScript
- local script = Instance.new('LocalScript', INFJUMP)
- function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
- counter = 0
- while wait(0.1)do
- script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
- counter = counter + 0.01
- end
- end
- coroutine.wrap(TKDWQ_fake_script)()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement