ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script ๐Ÿ“Œ
3.6k Views

f3x decal spam

Universal Script ๐Ÿ“ŒUploaded by
8 months ago
Please login to perform these actions:

Description

decal spam for f3x

View Raw
Edited By: c4l3bkidd_oofers94 Download


Comments
5
User profile picture
c00rupted_Rye 3 months ago
local button = script.Parent -- TextButton button.MouseButton1Click:Connect(function() local remote for _, t in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do if t:FindFirstChild("SyncAPI") then remote = t.SyncAPI.ServerEndpoint end end for _, t in pairs(game.Players.LocalPlayer.Character:GetChildren()) do if t:FindFirstChild("SyncAPI") then remote = t.SyncAPI.ServerEndpoint end end if not remote then return end local id = "80663247728134" local function addDecals(part) for _, face in pairs({0,1,2,3,4,5}) do remote:InvokeServer("CreateTextures", {{Part = part, Face = face, TextureType = "Decal"}}) remote:InvokeServer("SyncTexture", {{Part = part, Face = face, TextureType = "Decal", Texture = "rbx*etid://" .. id}}) end end local function spam() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") or v:IsA("MeshPart") or v:IsA("UnionOperation") then task.spawn(addDecals, v) end end end spam() while true do task.wait(1.8) spam() end end)
User profile picture
c00rupted_Rye 3 months ago
local button = script.Parent -- TextButton button.MouseButton1Click:Connect(function() local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local tool for i, v in player:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end for i, v in game.ReplicatedStorage:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end local remote = tool.SyncAPI.ServerEndpoint local RunService = game:GetService("RunService") function _(args) remote:InvokeServer(unpack(args)) end function CreatePart(cf, parent) local args = { [1] = "CreatePart", [2] = "Normal", [3] = cf, [4] = parent } _(args) end function SetAnchor(part, boolean) local args = { [1] = "SyncAnchor", [2] = { [1] = { ["Part"] = part, ["Anc*d"] = boolean } } } _(args) end function AddMesh(part) local args = { [1] = "CreateMeshes", [2] = { [1] = { ["Part"] = part } } } _(args) end function SetMesh(part, meshid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["MeshId"] = "rbx*etid://" .. meshid } } } _(args) end function SetTexture(part, texid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["TextureId"] = texid } } } _(args) end function MeshResize(part, size) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["Scale"] = size } } } _(args) end function SetTransparency(part, value) local args = { [1] = "SyncTransparency", [2] = { [1] = { ["Part"] = part, ["Transparency"] = value } } } _(args) end function DestroyPart(part) local args = { [1] = "Remove", [2] = { [1] = part } } _(args) end local images = { "http://www.roblox.com/*et/?id=80663247728134", "http://www.roblox.com/*et/?id=80663247728134", "http://www.roblox.com/*et/?id=80663247728134", "http://www.roblox.com/
User profile picture
GlitchyBeHaxxin 3 months ago
can I use this for my f3x gui
GlitchyBeHaxxin's profile pictureGlitchyBeHaxxincan I use this for my f3x gui
User profile picture
c4l3bkidd_oofers94 2 months ago
@GlitchyBeHaxxin yes
User profile picture
kayrus999 1 month ago
L
Please Login to add a comment.