0% found this document useful (0 votes)
789 views2 pages

Roblox Touch Fling Script Guide

The document contains a Lua script for a Roblox GUI that includes a frame with a toggle button and a label. The button allows users to enable or disable a 'fling' feature, which modifies the player's velocity. The frame is draggable and designed to be displayed in the player's GUI.

Uploaded by

shalaf431
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
789 views2 pages

Roblox Touch Fling Script Guide

The document contains a Lua script for a Roblox GUI that includes a frame with a toggle button and a label. The button allows users to enable or disable a 'fling' feature, which modifies the player's velocity. The frame is draggable and designed to be displayed in the player's GUI.

Uploaded by

shalaf431
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

local ScreenGui = Instance.

new("ScreenGui")
local Frame = [Link]("Frame")
local TextButton = [Link]("TextButton")
local TextLabel = [Link]("TextLabel")

--Properties:

[Link] = [Link]:WaitForChild("PlayerGui")
[Link] = [Link]
[Link] = false

[Link] = ScreenGui
Frame.BackgroundColor3 = [Link](0, 0, 0)
Frame.BorderColor3 = [Link](255, 255, 255)
[Link] = 2
[Link] = [Link](0.341826946, 0, 0.367763907, 0)
[Link] = [Link](0, 148, 0, 106)

[Link] = Frame
TextButton.BackgroundColor3 = [Link](0, 0, 0)
TextButton.BorderColor3 = [Link](255, 255, 255)
[Link] = 2
[Link] = [Link](0.0835492909, 0, 0.552504063, 0)
[Link] = [Link](0, 124, 0, 37)
[Link] = [Link]
[Link] = "OFF"
TextButton.TextColor3 = [Link](255, 255, 255)
[Link] = 41.000

[Link] = Frame
TextLabel.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1.000
TextLabel.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0.0649713054, 0, 0.0727680102, 0)
[Link] = [Link](0, 128, 0, 39)
[Link] = [Link]
[Link] = "Touch Fling"
TextLabel.TextColor3 = [Link](255, 255, 255)
[Link] = 34.000

-- Scripts:

local function CTIKC_fake_script() -- [Link]


local script = [Link]('LocalScript', TextButton)

local ReplicatedStorage = game:GetService("ReplicatedStorage")


local RunService = game:GetService("RunService")
local Players = game:GetService("Players")

local toggleButton = [Link]


local hiddenfling = false

if not ReplicatedStorage:FindFirstChild("juisdfj0i32i0eidsuf0iok") then


local detection = [Link]("Decal")
[Link] = "juisdfj0i32i0eidsuf0iok"
[Link] = ReplicatedStorage
end
local function fling()
local hrp, c, vel, movel = nil, nil, nil, 0.1
local lp = [Link]

while true do
[Link]:Wait()
if hiddenfling then
while hiddenfling and not (c and [Link] and hrp and
[Link]) do
[Link]:Wait()
c = [Link]
hrp = c and c:FindFirstChild("HumanoidRootPart")
end

if hiddenfling then
vel = [Link]
[Link] = vel * 10000 + [Link](0, 10000, 0)
[Link]:Wait()
if c and [Link] and hrp and [Link] then
[Link] = vel
end
[Link]:Wait()
if c and [Link] and hrp and [Link] then
[Link] = vel + [Link](0, movel, 0)
movel = movel * -1
end
end
end
end
end

toggleButton.MouseButton1Click:Connect(function()
hiddenfling = not hiddenfling
if hiddenfling then
[Link] = "ON"
else
[Link] = "OFF"
end
end)

fling()

end
[Link](CTIKC_fake_script)()
local function FFJFK_fake_script() -- [Link]
local script = [Link]('LocalScript', Frame)

[Link] = true
[Link] = true
end
[Link](FFJFK_fake_script)()

You might also like